home *** CD-ROM | disk | FTP | other *** search
- import java.awt.*;
- import java.applet.*;
- import java.awt.event.*;
- import JavaBean;
-
- public class BeanApp extends Applet
- {
- JavaBean bean;
-
- public void init()
- {
- super.init();
-
- // This code is automatically generated by Visual Cafe when you add
- // components to the visual environment. It instantiates and initializes
- // the components. To modify the code, only use code syntax that matches
- // what Visual Cafe can generate, or Visual Cafe may be unable to back
- // parse your Java file into its visual environment.
- //{{INIT_CONTROLS
- setLayout(new FlowLayout());
- setSize(200,100);
- //}}
-
- bean = new JavaBean();
- add("Center",bean);
- }
-
- //{{DECLARE_CONTROLS
- //}}
- }
-